home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
8542
/
8542.xpi
/
chrome
/
lastpass.jar
/
content
/
selectpasswords.xul
< prev
next >
Wrap
Extensible Markup Language
|
2010-02-14
|
2KB
|
60 lines
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://global/skin/passwordmgr.css" type="text/css"?>
<?xml-stylesheet href="chrome://lastpass/content/selectpasswords.css" type="text/css"?>
<!DOCTYPE dialog SYSTEM "chrome://lastpass/locale/lastpass.dtd">
<window id="SignonViewerDialog"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
onload="SignonsStartup();">
<script src="chrome://lastpass/content/selectpasswords.js"/>
<script src="chrome://lastpass/content/getlp.js"/>
<stringbundle id="signonBundle"
src="chrome://passwordmgr/locale/passwordmgr.properties"/>
<vbox id="savedsignons" class="contentPane" flex="1">
<description control="signonsTree" id="signonsIntro"/>
<separator class="thin"/>
<tree id="signonsTree" flex="1" style="height: 20em;" hidecolumnpicker="true"
onselect="SignonSelected();" editable="true">
<treecols>
<treecol id="siteCol" flex="5"
persist="width"/>
<splitter class="tree-splitter"/>
<treecol id="userCol" flex="2"
persist="width"/>
<splitter class="tree-splitter"/>
<treecol id="passwordCol" flex="2"
persist="width"
hidden="true"/>
<splitter class="tree-splitter"/>
<treecol id="importCol" flex="1" type="checkbox" persist="width" editable="true" />
</treecols>
<treechildren id="signonsTreeChildren" />
</tree>
<separator class="thin"/>
<hbox id="SignonViewerButtons">
<button id="selectAll"
oncommand="SelectAllSignons();"/>
<button id="unselectAll"
oncommand="UnselectAllSignons();"/>
<spacer flex="1"/>
<button id="togglePasswords"
oncommand="TogglePasswordVisible();"/>
</hbox>
</vbox>
<hbox align="end">
<hbox class="actionButtons" flex="1">
<button id="importBtn"
oncommand="ImportSignons();" />
<button id="cancelBtn"
oncommand="cancel();" />
</hbox>
<resizer dir="bottomright"/>
</hbox>
</window>